chore: switch Renovate lock-file maintenance & dev-deps to PR automerge#867
Merged
Conversation
`lockFileMaintenance` and the "major/minor dev dependencies" rule used `automergeType: "branch"`, which never opens a PR and relies on branch automerge merging directly into `master` once branch status checks pass. But CI only runs on `pull_request` and pushes to `master`, so no checks ever run on `renovate/*` branches and the branch can never go green. The update (including `uv.lock`) just piled up on the branch with no PR and no merge. Switch both rules to `automergeType: "pr"` so Renovate opens a PR (which triggers the existing pull_request CI) and auto-merges it once green, consistent with every other update in this repo. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Wenpt8A75nGV57DDqGvnTA
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #867 +/- ##
=======================================
Coverage 94.51% 94.51%
=======================================
Files 48 48
Lines 5069 5069
=======================================
Hits 4791 4791
Misses 278 278
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
vdusek
approved these changes
Jun 18, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
lockFileMaintenanceand the "major/minor dev dependencies" rule usedautomergeType: "branch", which never opens a PR and relies on branch automerge merging directly intomasteronce branch status checks pass. But CI only runs onpull_requestand pushes tomaster, so no checks ever run onrenovate/*branches and the branch can never go green. The update (includinguv.lock) just piled up on the branch with no PR and no merge.Switch both rules to
automergeType: "pr"so Renovate opens a PR (which triggers the existing pull_request CI) and auto-merges it once green, consistent with every other update in this repo.